print("hi there, welcome to evan's currently untitled script v1.6") print("controls:") print("Q - plant googie/stupid idiot") print("E (moused over a player) - judgement") print("/cmds for commands") owner.Character.Humanoid.DisplayDistanceType = "None" local highlight = Instance.new("Highlight",owner.Character) highlight.FillTransparency = 1 highlight.OutlineColor = Color3.new(0.0980392, 0.737255, 0) highlight.DepthMode = "Occluded" local name = Instance.new("BillboardGui",owner.Character.Head) name.Size = UDim2.new(7,0,1.5,0) name.StudsOffset = Vector3.new(0,5,0) local nametext = Instance.new("TextLabel",name) nametext.BackgroundTransparency = 1 nametext.BorderSizePixel = 0 nametext.TextColor3 = Color3.new(0.364706, 0.909804, 0.517647) nametext.TextScaled = true nametext.Text = owner.Character.Humanoid.DisplayName nametext.Size = UDim2.new(1,0,1,0) nametext.TextStrokeTransparency = 0 nametext.TextStrokeColor3 = Color3.new(0.0156863, 0.168627, 0) ----------------------------------------------------------------------------------- local textremote = Instance.new("RemoteEvent",owner.Character) textremote.Name = "statrem" local conUpd = Instance.new("RemoteEvent",owner.Character) conUpd.Name = "conrem" local statsnd = Instance.new("Sound",owner.Character.Torso) statsnd.SoundId = "rbxassetid://12221990" statsnd.Volume = 1 local status = Instance.new("BillboardGui",owner.Character.Head) status.Size = UDim2.new(7,0,.75,0) status.StudsOffset = Vector3.new(0,3.9,0) local statustext = Instance.new("TextBox",status) statustext.BackgroundTransparency = 1 statustext.BorderSizePixel = 0 statustext.TextColor3 = Color3.new(0.364706, 0.909804, 0.517647) statustext.TextScaled = true statustext.Text = "TextLabel" statustext.Size = UDim2.new(1,0,1,0) statustext.TextStrokeTransparency = 0 statustext.TextStrokeColor3 = Color3.new(0.0156863, 0.168627, 0) local tgui = Instance.new("ScreenGui",owner.PlayerGui) local tguitex = Instance.new("TextBox",tgui) tguitex.Size = UDim2.new(0.2,0,0.05,0) tguitex.Position = UDim2.new(0.8,0,0.95,0) textremote.OnServerEvent:Connect(function(plr,newText) statsnd.PlaybackSpeed = math.random(9,11)/10 statsnd:Play() statustext.Text = ("[".. newText .."]") end) local conScrGui = Instance.new("ScreenGui",owner.PlayerGui) conScrGui.Name = "consoleScreen" local conScrTex = Instance.new("TextBox",conScrGui) conScrTex.Size = UDim2.new(0.2,0,0.15,0) conScrTex.Position = UDim2.new(0.8,0,0.8,0) conScrTex.ClearTextOnFocus = false conScrTex.TextWrapped = false conScrTex.MultiLine = true conScrGui.Enabled = false ----------------------------------------------------------------------------------------------------------------------------------------------- local chatrem = Instance.new("RemoteEvent",owner.Character) chatrem.Name = "chatrem" local chatbill = Instance.new("BillboardGui",owner.Character.Head) chatbill.Name = "statbill" chatbill.Size = UDim2.new(12,0,.75,0) chatbill.StudsOffset = Vector3.new(0,1.75,0) local chattex = Instance.new("TextBox",chatbill) chattex.BackgroundTransparency = 1 chattex.BorderSizePixel = 0 chattex.TextColor3 = Color3.new(0, 0, 0) chattex.TextScaled = true chattex.Text = "" chattex.Size = UDim2.new(1,0,1,0) chattex.TextStrokeTransparency = 0 chattex.TextStrokeColor3 = Color3.new(0.607843, 1, 0.537255) local chatsnd = Instance.new("Sound",owner.Character.Torso) chatsnd.SoundId = "rbxassetid://12221967" chatsnd.Volume = 1 local consoleon = false local widescreen = false local widestscreen = false chatrem.OnServerEvent:Connect(function(plr,msg) chatsnd.PlaybackSpeed = math.random(9,11)/10 chatsnd:Play() chattex.Text = msg if msg == "/help" then print("controls:") print("Q - plant googie/stupid idiot") print("E (moused over a player) - judgement") elseif msg == "/cmds" or msg == "/commands" then print("commands:") print("/con or /console to open console") print("/exec or /execute to run code") print("/quit to exit console") print("/help for controls again") print("/widescreen to extend the console. maybe there's more to this one..?") elseif msg == "/con" or msg == "/console" and consoleon == false then consoleon = true local conPart = Instance.new("Part",script) conPart.Name = "consoleBase" conPart.Material = "Neon" conPart.Anchored = true conPart.Size = Vector3.new(15,6,0.1) conPart.CanCollide = false conPart.Transparency = 0.75 local conGui = Instance.new("SurfaceGui",conPart) conGui.Name = "consoleGui" conGui.Face = "Back" conGui.CanvasSize = Vector2.new(750,300) local conGText = Instance.new("TextBox",conGui) conGText.Size = UDim2.new(1,0,1,0) conGText.BackgroundTransparency = 1 conGText.BorderSizePixel = 0 conGText.TextXAlignment = "Left" conGText.TextYAlignment = "Top" conGText.ClearTextOnFocus = false conGText.TextSize = 15 conGText.TextWrapped = false conGText.MultiLine = true conGText.Text = "game.Workspace.yourMom:Destroy()" conScrGui.Enabled = true while task.wait(.005) and consoleon == true do conPart.CFrame = owner.Character.HumanoidRootPart.CFrame * CFrame.new(0,2,-5) end elseif msg == "/quit" and consoleon == true then consoleon = false conScrGui.Enabled = false local conPart = script.consoleBase conPart:Destroy() elseif msg == "/widescreen" and consoleon == true and widestscreen == false then if widescreen == false then widescreen = true local con = script.consoleBase local conGui = con.consoleGui con.Size = Vector3.new(25,6,0.1) conGui.CanvasSize = Vector2.new(1250,300) elseif widescreen == true then widescreen = false local con = script.consoleBase local conGui = con.consoleGui con.Size = Vector3.new(15,6,0.1) conGui.CanvasSize = Vector2.new(750,300) end elseif msg == "/widestscreen" and consoleon == true and widescreen == false then if widestscreen == false then widestscreen = true local con = script.consoleBase local conGui = con.consoleGui con.Size = Vector3.new(500,6,0.1) conGui.CanvasSize = Vector2.new(25000,300) warn("me coding youR MOM!!!!!!!!!!") elseif widestscreen == true then widestscreen = false local con = script.consoleBase local conGui = con.consoleGui con.Size = Vector3.new(15,6,0.1) conGui.CanvasSize = Vector2.new(750,300) end elseif msg == "/exec" or msg == "/execute" and consoleon == true then local conGText = script.consoleBase.consoleGui.TextBox local conCode = conGText.Text local success, response = pcall(loadstring(conCode)) local sSound = Instance.new("Sound",script.consoleBase) sSound.Volume = 1 sSound.SoundId = "rbxassetid://12222253" local eSound = Instance.new("Sound",script.consoleBase) eSound.Volume = 1 eSound.SoundId = "rbxassetid://12222005" if success == true then print("worked!") sSound:Play() elseif success == false then warn("uh oh!!!") print(response) eSound:Play() end end end) conUpd.OnServerEvent:Connect(function(plr,conText) script.consoleBase.consoleGui.TextBox.Text = conText end) ----------------------------------------------------------------------------------------------------------------------------------------------- local re = Instance.new("RemoteEvent") re.Name = "agony" re.Parent = owner.Character local remote = Instance.new("RemoteEvent", owner.PlayerGui) remote.Name = "Highlight" j = Instance.new("Sound", owner.Character.Torso) j.SoundId = "rbxassetid://7007957247" j.Volume = 1 j.PlaybackSpeed = 1 t = Instance.new("Sound", owner.Character.Torso) t.SoundId = "rbxassetid://2150693576" t.Volume = 1 t.PlaybackSpeed = 1 local parry = Instance.new("BillboardGui", owner.Character.Torso) parry.Size = UDim2.new(4,0,4,0) parry.Enabled = false parry.AlwaysOnTop = true local parryimage = Instance.new("ImageLabel",parry) parryimage.Image = "rbxassetid://12159277852" parryimage.Size = UDim2.new(1,0,1,0) parryimage.BackgroundTransparency = 1 local dashs = Instance.new("Sound",owner.Character.Torso) dashs.SoundId = "rbxassetid://6870001262" local judgesnd = Instance.new("Sound",owner.Character.Torso) judgesnd.SoundId = "rbxassetid://7007956313" judgesnd.Volume = 2 re.OnServerEvent:Connect(function(plr,code,target) if code == "j" then elseif code == "e" then if game:GetService("Players"):GetPlayerFromCharacter(target.Parent) then j:Play() local pointer = target wait(1.3) dashs:Play() owner.Character.HumanoidRootPart.CFrame = pointer.Parent:WaitForChild("HumanoidRootPart").CFrame * CFrame.new(0,0,3) parry.Enabled = true local psound = Instance.new("Sound",owner.Character.Torso) psound.Volume = 1 psound.SoundId = "rbxassetid://12159357998" owner.Character.HumanoidRootPart.Anchored = true local ff = Instance.new("ForceField",owner.Character) ff.Visible = false wait(.3) parry.Enabled = false owner.Character.HumanoidRootPart.Anchored = false local kaboom = Instance.new("Explosion",game.Workspace) kaboom.Position = pointer.Parent:WaitForChild("HumanoidRootPart").Position judgesnd:Play() wait(.1) ff:Destroy() end -----teleport----- elseif code == "t" then t.PlaybackSpeed = math.random(9,11)/10 t:Play() local part1 = Instance.new("Part") local googie = Instance.new("SpecialMesh") part1.Parent = game.Workspace googie.Parent = part1 part1.CFrame = owner.Character.HumanoidRootPart.CFrame * CFrame.new(0,0,-3) part1.Size = Vector3.new(2.2, 2.85, 0.05) googie.Scale = Vector3.new(3, 3.5, 0.1) googie.MeshId = "rbxassetid://7144256458" googie.TextureId = "rbxassetid://7144264640" wait(math.random(6,12)) part1.Anchored = true local uhoh = Instance.new("Sound", part1) uhoh.SoundId = "rbxassetid://4942516123" uhoh:Play() wait(1.5) uhoh:Destroy() local boom = Instance.new("Sound", part1) boom.SoundId = "rbxassetid://252142019" local actualboom = Instance.new("Explosion", game.Workspace) boom.Volume = 2 boom:Play() actualboom.Position = part1.Position part1.Transparency = 1 wait(5) boom:Destroy() part1:Destroy() end end) NLS([[ local UserInputService = game:GetService("UserInputService") local mouse = owner:GetMouse() local pos = Vector3.new() local rem = owner.Character.statrem local tbox = owner.PlayerGui.ScreenGui.TextBox tbox.FocusLost:Connect(function() local newText = tbox.Text if newText ~= "" then rem:FireServer(newText) end end) local rem = owner.Character.chatrem local tbox = owner.Character.Head.statbill.TextBox owner.Chatted:Connect(function(msg) rem:FireServer(msg) end) local conRem = owner.Character.conrem local conBox = owner.PlayerGui.consoleScreen.TextBox conBox.Changed:Connect(function(value) if value == "Text" then conRem:FireServer(conBox.Text) end end) local function onInputBegan(input, _gameProcessed) if _gameProcessed then return end if input.KeyCode == Enum.KeyCode.E then owner.Character.agony:FireServer('j') end if input.KeyCode == Enum.KeyCode.Q then owner.Character.agony:FireServer('t') end if input.KeyCode == Enum.KeyCode.E then owner.Character.agony:FireServer('e', mouse.Target) end end UserInputService.InputBegan:Connect(onInputBegan)]], owner.PlayerGui)